web3.js@0.2x.x web3.eth.accounts
web3.eth.accounts
ノードによって管理されているアカウントのリストを返します。
読み取り専用プロパティです。
非同期コード
web3.eth.getAccounts(callback(error, result){ ... })
戻り値
Array
クライアント(ノード)によって管理されているアドレスの配列です。
サンプルコード
code:example.js
var accounts = web3.eth.accounts;
参考